home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 92 / DPPCZ0800.7z / DPPCZ0800.ISO / Patches / Star Trek - Armada / Armada_patch_1_1.exe / LDL / string_g.ldl < prev    next >
Text File  |  2000-04-24  |  2KB  |  74 lines

  1. import "string_e.ldl"
  2.  
  3. ############################################################################################################
  4. #
  5. #    this is the list of files to copy during install, not including those files automatically placed into
  6. #    uninstall/, and not including shortcuts (which are handled by the shortcut and start_menu blocks).
  7. #
  8. #    setup will first execute filecopy.copy_0, then filecopy.copy_1, and so on... up until the first block in
  9. #    this series which doesn't exist.
  10. #
  11. #    for each filecopy child block, the following attributes are defined:
  12. #
  13. #        src         path of the source files for this copy.  default directory is SRCDIR:/.
  14. #
  15. #        dest        path of the destination files for this copy.  default directory is TARGETDIR:/.
  16. #                        if src is not specified, dest is logged for uninstall, but nothing actually gets copied.
  17. #
  18. #        recurse        if present, filecopy searches recursively through all subdirectories of src.
  19. #
  20. #        update        can be one of two values, if present:  'version', or 'time'.  this means that no file gets
  21. #                        copied if the dest file already exists and is more recent.  If 'version', more recent
  22. #                        means a higher version number in the version resource.  Not all files have a version resource,
  23. #                        but all have a date and time stamp.  If 'time', more recent means a later 'last modified'
  24. #                        date & time.
  25. #
  26. #        shared        if present, files copied are treated as shared files, for which a reference count will be
  27. #                        maintained in the registry under the key, 
  28. #                        HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SharedDLLs
  29. #
  30.  
  31. filecopy
  32. {
  33.       copy_6
  34.     {
  35.         string src "german\\label.map"        
  36.         string dest "label.map"
  37.     }
  38.       copy_7
  39.     {
  40.         string src "german\\objtxt.zfs"        
  41.         string dest "objtxt.zfs"
  42.     }
  43.       copy_8
  44.     {
  45.         string src "german\\readme.htm"        
  46.         string dest "help\\readme.htm"
  47.     }
  48.       copy_9
  49.     {
  50.         string src "german\\readme.rtf"        
  51.         string dest "help\\readme.rtf"
  52.     }
  53.       copy_10
  54.     {
  55.         string src "german\\Installing_the_game.htm"        
  56.         string dest "help\\help\\Installing_the_game.htm"
  57.     }
  58.     copy_10
  59.     {
  60.         string src "german\\finale1s.dsl"
  61.         string dest "missions\\finale1s.dsl"
  62.     }
  63.     copy_11
  64.     {
  65.         string src "german\\finale6s.dsl"
  66.         string dest "missions\\finale6s.dsl"
  67.     }
  68.       copy_12
  69.     {
  70.         string src "german\\Dynamic_Localized_Strings.h"        
  71.         string dest "Dynamic_Localized_Strings.h"
  72.     }
  73. }
  74.